/* ===== ROOT VARIABLES ===== */
        :root {
            --primary: #006699;
            --primary-dark: #004d73;
            --primary-light: #3385a8;
            --secondary: #F8F9FA;
            --accent: #F59E0B;
            --gradient-start: #006699;
            --gradient-end: #3385a8;
            --text-primary: #0A1628;  /* darker */
            --text-secondary: #1A2A3A;  /* darker */
            --text-muted: #2C3E50;  /* darker */
            --bg-dark: #FFFFFF;
            --bg-card: #FFFFFF;
            --bg-card-hover: #F3F4F6;
            --bg-section: #F8F9FA;
            --border-color: #E5E7EB;
            --shadow: 0 4px 20px rgba(0, 102, 153, 0.15);
            --shadow-lg: 0 20px 60px rgba(0, 102, 153, 0.2);
            --radius: 16px;
            --radius-sm: 8px;
            --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            --font-family: 'Inter', sans-serif;
        }

        /* ===== RESET & BASE ===== */
        * { margin: 0; padding: 0; box-sizing: border-box; }
        html { scroll-behavior: smooth; }
        body {
            font-family: var(--font-family);
            background: var(--bg-dark);
            color: var(--text-primary);
            line-height: 1.5;
            overflow-x: hidden;
            font-size: 13px;  /* smaller */
        }
        a { text-decoration: none; color: inherit; }
        ul { list-style: none; }
        img { max-width: 100%; }
        .container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

        /* ===== SCROLLBAR ===== */
        ::-webkit-scrollbar { width: 6px; }
        ::-webkit-scrollbar-track { background: var(--bg-section); }
        ::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 4px; }
        ::-webkit-scrollbar-thumb:hover { background: var(--primary-dark); }

        /* ===== GRADIENT TEXT ===== */
        .gradient-text {
            background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        /* ===== BUTTONS ===== */
        .btn {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 8px 18px;
            border: none;
            border-radius: var(--radius-sm);
            font-family: var(--font-family);
            font-weight: 600;
            font-size: 12px;  /* smaller */
            cursor: pointer;
            transition: var(--transition);
            text-decoration: none;
        }
        .btn-primary {
            background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
            color: white;
            box-shadow: 0 4px 20px rgba(0, 102, 153, 0.3);
        }
        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 30px rgba(0, 102, 153, 0.4);
        }
        .btn-secondary {
            background: var(--bg-card);
            color: var(--text-primary);
            border: 1px solid var(--border-color);
        }
        .btn-secondary:hover {
            background: var(--bg-card-hover);
            border-color: var(--primary);
        }
        .btn-outline {
            background: transparent;
            color: var(--text-primary);
            border: 2px solid var(--border-color);
        }
        .btn-outline:hover {
            border-color: var(--primary);
            background: rgba(0, 102, 153, 0.05);
        }

        /* ===== NAVBAR ===== */
        .navbar {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            padding: 10px 0;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(20px);
            border-bottom: 1px solid var(--border-color);
            transition: var(--transition);
        }
        .navbar.scrolled { padding: 6px 0; background: rgba(255, 255, 255, 0.98); box-shadow: var(--shadow); }
        .navbar .container { display: flex; align-items: center; justify-content: space-between; gap: 16px; }

        /* Logo */
        .logo {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 15px;  /* smaller */
            font-weight: 700;
            text-decoration: none;
            flex-shrink: 0;
        }
        .logo-image {
            width: 80px;
            height: 68px;
            object-fit: contain;
            border-radius: 6px;
            display: block;
        }
        .logo:hover .logo-image { transform: scale(1.05); transition: transform 0.3s ease; }

        /* Navbar Search */
        .navbar-search { flex: 1; max-width: 500px; margin: 0 16px; }
        .navbar-search .search-box {
            display: flex;
            align-items: center;
            background: var(--bg-section);
            border: 2px solid var(--border-color);
            border-radius: 50px;
            padding: 0 14px;
            transition: var(--transition);
        }
        .navbar-search .search-box:focus-within {
            border-color: var(--primary);
            box-shadow: 0 0 0 4px rgba(0, 102, 153, 0.1);
        }
        .navbar-search .search-box i { color: var(--text-muted); font-size: 13px; }
        .navbar-search .search-box input {
            flex: 1;
            padding: 6px 10px;
            border: none;
            background: transparent;
            color: var(--text-primary);
            font-family: var(--font-family);
            font-size: 12px;  /* smaller */
            outline: none;
        }
        .navbar-search .search-box input::placeholder { color: var(--text-muted); }
        .navbar-search .search-box .search-btn {
            padding: 5px 12px;
            background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
            border: none;
            border-radius: 50px;
            color: white;
            font-weight: 600;
            font-size: 11px;  /* smaller */
            cursor: pointer;
            transition: var(--transition);
            font-family: var(--font-family);
            white-space: nowrap;
        }
        .navbar-search .search-box .search-btn:hover { transform: scale(1.05); }

        /* Nav Links */
        .nav-links { display: flex; gap: 24px; }
        .nav-links a {
            font-size: 12px;  /* smaller */
            font-weight: 500;
            color: var(--text-secondary);
            transition: var(--transition);
            position: relative;
        }
        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 0;
            width: 0;
            height: 2px;
            background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
            transition: var(--transition);
        }
        .nav-links a:hover, .nav-links a.active { color: var(--text-primary); }
        .nav-links a:hover::after, .nav-links a.active::after { width: 100%; }

        /* Nav Actions */
        .nav-actions { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
        .wallet-btn {
            display: flex;
            align-items: center;
            gap: 5px;
            padding: 6px 14px;
            background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
            border: none;
            border-radius: var(--radius-sm);
            color: white;
            font-weight: 600;
            font-size: 11px;  /* smaller */
            cursor: pointer;
            transition: var(--transition);
            font-family: var(--font-family);
        }
        .wallet-btn:hover {
            transform: scale(1.05);
            box-shadow: 0 4px 20px rgba(0, 102, 153, 0.4);
        }
        .cart-btn {
            position: relative;
            background: var(--bg-card);
            border: 1px solid var(--border-color);
            color: var(--text-primary);
            padding: 6px 10px;
            border-radius: var(--radius-sm);
            cursor: pointer;
            transition: var(--transition);
            font-size: 14px;
        }
        .cart-btn:hover { border-color: var(--primary); background: var(--bg-card-hover); }
        .cart-badge {
            position: absolute;
            top: -6px;
            right: -6px;
            background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
            color: white;
            font-size: 8px;  /* smaller */
            font-weight: 700;
            width: 16px;
            height: 16px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .menu-toggle {
            display: none;
            background: none;
            border: none;
            color: var(--text-primary);
            font-size: 18px;
            cursor: pointer;
        }

        /* ===== HERO ===== */
        .hero {
            padding: 100px 0 50px;
            min-height: 90vh;
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
            background: linear-gradient(180deg, #FFFFFF 0%, #F8F9FA 100%);
        }
        .hero::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -20%;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(0, 102, 153, 0.08), transparent 70%);
            border-radius: 50%;
            pointer-events: none;
        }
        .hero-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            align-items: center;
            position: relative;
            z-index: 1;
        }
        .hero-text { display: flex; flex-direction: column; gap: 12px; }
        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 4px 12px;
            background: rgba(0, 102, 153, 0.08);
            border: 1px solid rgba(0, 102, 153, 0.15);
            border-radius: 50px;
            font-size: 11px;  /* smaller */
            font-weight: 500;
            color: var(--primary);
            width: fit-content;
        }
        .hero h1 { font-size: 32px; font-weight: 800; line-height: 1.1; color: var(--text-primary); }
        .hero p { font-size: 14px; color: var(--text-secondary); max-width: 500px; }
        .hero-stats { display: flex; gap: 30px; padding: 10px 0; }
        .stat h3 { font-size: 20px; font-weight: 700; color: var(--text-primary); }
        .stat p { font-size: 11px; color: var(--text-muted); margin-top: 2px; }
        .hero-actions { display: flex; gap: 10px; margin-top: 4px; }

        /* Hero Visual */
        .hero-visual { position: relative; display: flex; justify-content: center; align-items: center; min-height: 320px; }
        .slider-container {
            position: relative;
            width: 100%;
            max-width: 500px;
            height: 320px;
            overflow: hidden;
            border-radius: var(--radius);
            background: var(--bg-card);
            border: 1px solid var(--border-color);
            box-shadow: var(--shadow-lg);
            margin: 0 auto;
        }
        .slider-wrapper {
            display: flex;
            transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
            height: 100%;
            width: 100%;
        }
        .slide {
            min-width: 100%;
            height: 100%;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            padding: 20px;
            background: var(--bg-card);
            gap: 8px;
            flex-shrink: 0;
        }
        .slide-image {
            width: 90px;
            height: 90px;
            border-radius: 50%;
            background: linear-gradient(135deg, rgba(0, 102, 153, 0.08), rgba(51, 133, 168, 0.08));
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 36px;
            color: var(--primary-light);
            border: 2px solid var(--border-color);
            transition: var(--transition);
            flex-shrink: 0;
            overflow: hidden;
        }
        .slide-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        .slide:hover .slide-image {
            transform: scale(1.05);
            border-color: var(--primary);
            box-shadow: 0 0 30px rgba(0, 102, 153, 0.15);
        }
        .slide-details { text-align: center; width: 100%; }
        .slide-details h3 { font-size: 15px; font-weight: 700; color: var(--text-primary); margin-bottom: 2px; }
        .slide-price { font-size: 16px; font-weight: 700; color: var(--primary); margin-bottom: 2px; }
        .slide-price i { font-size: 13px; margin-right: 4px; }
        .slide-rating { color: #F59E0B; font-size: 11px; margin-bottom: 4px; }
        .slide-rating span { color: var(--text-muted); font-size: 10px; margin-left: 4px; }
        .slide-badge {
            display: inline-block;
            padding: 2px 10px;
            border-radius: 50px;
            font-size: 9px;
            font-weight: 600;
            text-transform: uppercase;
            background: rgba(0, 102, 153, 0.1);
            color: var(--primary);
            margin-bottom: 6px;
        }
        .slide-add-btn {
            padding: 5px 14px;
            background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
            border: none;
            border-radius: var(--radius-sm);
            color: white;
            font-weight: 600;
            font-size: 11px;
            cursor: pointer;
            transition: var(--transition);
            font-family: var(--font-family);
        }
        .slide-add-btn:hover { transform: scale(1.05); box-shadow: 0 4px 16px rgba(0, 102, 153, 0.4); }

        .slider-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 32px;
            height: 32px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.95);
            border: 1px solid var(--border-color);
            color: var(--text-primary);
            cursor: pointer;
            transition: var(--transition);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 13px;
            box-shadow: var(--shadow);
            z-index: 10;
        }
        .slider-btn:hover { background: var(--primary); color: white; border-color: var(--primary); transform: translateY(-50%) scale(1.05); }
        .prev-btn { left: 8px; }
        .next-btn { right: 8px; }

        .slider-dots {
            position: absolute;
            bottom: 8px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 6px;
            z-index: 10;
        }
        .dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: rgba(0, 0, 0, 0.2);
            cursor: pointer;
            transition: var(--transition);
            border: 1px solid rgba(255, 255, 255, 0.3);
        }
        .dot:hover { background: rgba(0, 0, 0, 0.4); transform: scale(1.2); }
        .dot.active { background: var(--primary); width: 24px; border-radius: 10px; }

        /* ===== SECTION COMMON ===== */
        .section-header { text-align: center; margin-bottom: 24px; }
        .section-label {
            display: inline-block;
            padding: 3px 10px;
            background: rgba(0, 102, 153, 0.08);
            border: 1px solid rgba(0, 102, 153, 0.12);
            border-radius: 50px;
            font-size: 10px;  /* smaller */
            font-weight: 600;
            color: var(--primary);
            text-transform: uppercase;
            letter-spacing: 0.5px;
            margin-bottom: 4px;
        }
        .section-header h2 { font-size: 24px; font-weight: 700; margin-bottom: 4px; color: var(--text-primary); }
        .section-header p { color: var(--text-secondary); font-size: 13px; max-width: 600px; margin: 0 auto; }

        /* ===== PRODUCTS ===== */
        .products { padding: 32px 0; background: var(--bg-dark); }
        .product-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            gap: 16px;
        }
        .product-card {
            background: var(--bg-card);
            border: 1px solid var(--border-color);
            border-radius: var(--radius-sm);
            overflow: hidden;
            transition: var(--transition);
            cursor: pointer;
            box-shadow: var(--shadow);
        }
        .product-card:hover { transform: translateY(-4px); border-color: var(--primary); box-shadow: var(--shadow-lg); }
        .product-image {
            width: 100%;
            height: 130px;
            background: linear-gradient(135deg, rgba(0, 102, 153, 0.05), rgba(51, 133, 168, 0.05));
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 32px;
            color: var(--primary-light);
            position: relative;
            overflow: hidden;
        }
        .product-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition);
        }
        .product-card:hover .product-img { transform: scale(1.05); }
        .product-badge {
            position: absolute;
            top: 8px;
            right: 8px;
            padding: 2px 8px;
            border-radius: 50px;
            font-size: 8px;  /* smaller */
            font-weight: 600;
            text-transform: uppercase;
            background: rgba(0, 0, 0, 0.7);
            color: white;
            backdrop-filter: blur(4px);
            z-index: 3;
        }
        .product-location {
            position: absolute;
            bottom: 8px;
            left: 8px;
            padding: 2px 6px;
            background: rgba(0, 0, 0, 0.7);
            backdrop-filter: blur(4px);
            border-radius: 50px;
            font-size: 8px;  /* smaller */
            color: white;
            z-index: 3;
        }
        .product-info { padding: 10px; }
        .product-info h3 { font-size: 13px; font-weight: 600; margin-bottom: 2px; color: var(--text-primary); }
        .product-info .product-desc {
            color: var(--text-secondary);
            font-size: 11px;  /* smaller */
            margin-bottom: 6px;
            line-height: 1.4;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }
        .product-rating { font-size: 10px; color: #F59E0B; margin-bottom: 4px; }
        .product-rating span { color: var(--text-muted); font-size: 9px; }
        .product-price {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-top: 6px;
            padding-top: 6px;
            border-top: 1px solid var(--border-color);
        }
        .price { font-weight: 700; font-size: 14px; color: var(--text-primary); }
        .price i { font-size: 11px; color: var(--primary-light); margin-right: 3px; }

        .add-to-cart {
            padding: 3px 10px;
            background: linear-gradient(135deg, #006699, #3385a8);
            border: none;
            border-radius: 6px;
            color: white;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            font-family: 'Inter', sans-serif;
            font-size: 10px;  /* smaller */
            display: inline-flex;
            align-items: center;
            gap: 4px;
        }
        .add-to-cart:hover { transform: scale(1.05); box-shadow: 0 4px 12px rgba(0, 102, 153, 0.4); }
        .add-to-cart:disabled { opacity: 0.5; cursor: not-allowed; transform: none !important; }

        .load-more { text-align: center; margin-top: 20px; }

        /* ===== SEARCH & FILTER BAR ===== */
        .search-filter-bar {
            background: var(--bg-card);
            border: 1px solid var(--border-color);
            border-radius: var(--radius);
            padding: 16px;
            margin-bottom: 20px;
            box-shadow: var(--shadow);
        }
        .search-box {
            display: flex;
            align-items: center;
            background: var(--bg-section);
            border: 2px solid var(--border-color);
            border-radius: var(--radius-sm);
            padding: 0 10px;
            transition: var(--transition);
            margin-bottom: 10px;
        }
        .search-box:focus-within { border-color: var(--primary); box-shadow: 0 0 0 4px rgba(0, 102, 153, 0.1); }
        .search-box i { color: var(--text-muted); font-size: 13px; }
        .search-box input {
            flex: 1; padding: 8px 8px;
            border: none; background: transparent;
            color: var(--text-primary);
            font-family: var(--font-family);
            font-size: 12px;  /* smaller */
            outline: none;
        }
        .search-box input::placeholder { color: var(--text-muted); }
        .clear-search {
            background: none; border: none;
            color: var(--text-muted);
            cursor: pointer;
            padding: 2px 6px;
            transition: var(--transition);
            font-size: 11px;
        }
        .clear-search:hover { color: var(--text-primary); }

        .filter-controls { display: flex; gap: 8px; flex-wrap: wrap; }
        .filter-group { flex: 1; min-width: 120px; }
        .filter-select {
            width: 100%;
            padding: 6px 10px;
            background: var(--bg-section);
            border: 1px solid var(--border-color);
            border-radius: var(--radius-sm);
            color: var(--text-primary);
            font-family: var(--font-family);
            font-size: 11px;  /* smaller */
            cursor: pointer;
            transition: var(--transition);
            appearance: none;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%2364748b' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
            background-repeat: no-repeat;
            background-position: right 10px center;
        }
        .filter-select:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px rgba(0, 102, 153, 0.1); }
        .filter-select:hover { border-color: var(--primary); }

        .search-stats { margin-top: 10px; font-size: 12px; color: var(--text-secondary); text-align: center; }
        .search-stats span { font-weight: 600; color: var(--text-primary); }

        .filter-tags { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 14px; }
        .filter-tag {
            display: inline-flex; align-items: center; gap: 6px;
            padding: 3px 10px;
            background: rgba(0, 102, 153, 0.08);
            border: 1px solid rgba(0, 102, 153, 0.15);
            border-radius: 50px;
            font-size: 11px;  /* smaller */
            font-weight: 500;
            color: var(--primary);
            cursor: pointer;
            transition: var(--transition);
        }
        .filter-tag:hover { background: rgba(0, 102, 153, 0.15); }
        .filter-tag i { font-size: 9px; }
        .filter-tag i:hover { color: #EF4444; }

        /* ===== CART SIDEBAR ===== */
        .cart-overlay {
            position: fixed;
            top: 0; left: 0; right: 0; bottom: 0;
            background: rgba(0, 0, 0, 0.5);
            backdrop-filter: blur(4px);
            z-index: 2000;
            opacity: 0;
            visibility: hidden;
            transition: var(--transition);
        }
        .cart-overlay.active { opacity: 1; visibility: visible; }
        .cart-sidebar {
            position: fixed;
            top: 0;
            right: -480px;
            width: 400px;
            height: 100vh;
            background: var(--bg-card);
            border-left: 1px solid var(--border-color);
            z-index: 2001;
            transition: var(--transition);
            display: flex;
            flex-direction: column;
            box-shadow: var(--shadow-lg);
        }
        .cart-sidebar.active { right: 0; }
        .cart-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 14px 20px;
            border-bottom: 1px solid var(--border-color);
        }
        .cart-header h3 { font-size: 15px; font-weight: 600; color: var(--text-primary); }
        .cart-close {
            background: none; border: none;
            color: var(--text-secondary);
            font-size: 18px;
            cursor: pointer;
            transition: var(--transition);
        }
        .cart-close:hover { color: var(--text-primary); }
        .cart-body { flex: 1; overflow-y: auto; padding: 16px; }
        .cart-empty { text-align: center; padding: 30px 0; }
        .cart-empty i { font-size: 36px; color: var(--text-muted); margin-bottom: 10px; }
        .cart-empty p { font-size: 14px; font-weight: 500; color: var(--text-secondary); }
        .cart-empty span { color: var(--text-muted); font-size: 12px; }

        .cart-item {
            display: flex; gap: 12px;
            padding: 10px 0;
            border-bottom: 1px solid var(--border-color);
        }
        .cart-item-image {
            width: 56px; height: 56px;
            background: rgba(0, 102, 153, 0.06);
            border-radius: var(--radius-sm);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            color: var(--primary-light);
            flex-shrink: 0;
        }
        .cart-item-info { flex: 1; }
        .cart-item-info h4 { font-size: 13px; font-weight: 600; margin-bottom: 2px; color: var(--text-primary); }
        .cart-item-info .item-price { color: var(--text-secondary); font-size: 12px; }
        .cart-item-actions {
            display: flex;
            align-items: center;
            gap: 8px;
            margin-top: 4px;
        }
        .cart-item-actions button {
            background: none;
            border: 1px solid var(--border-color);
            color: var(--text-secondary);
            width: 22px;
            height: 22px;
            border-radius: 50%;
            cursor: pointer;
            transition: var(--transition);
            font-size: 11px;
        }
        .cart-item-actions button:hover { border-color: var(--primary); color: var(--text-primary); }
        .cart-item-actions .qty {
            font-weight: 600;
            min-width: 16px;
            text-align: center;
            font-size: 13px;
        }

        .cart-footer {
            padding: 14px 20px;
            border-top: 1px solid var(--border-color);
            background: var(--bg-section);
        }
        .cart-total {
            display: flex;
            justify-content: space-between;
            font-size: 15px;
            font-weight: 700;
            margin-bottom: 10px;
            color: var(--text-primary);
        }
        .checkout-btn { width: 100%; justify-content: center; }

        /* ===== TOAST ===== */
        .toast-container {
            position: fixed;
            bottom: 20px;
            right: 20px;
            z-index: 3000;
            display: flex;
            flex-direction: column;
            gap: 8px;
        }
        .toast {
            background: var(--bg-card);
            border: 1px solid var(--border-color);
            border-radius: var(--radius-sm);
            padding: 12px 16px;
            min-width: 260px;
            display: flex;
            align-items: center;
            gap: 10px;
            animation: slideUp 0.3s ease-out;
            box-shadow: var(--shadow-lg);
        }
        .toast.success { border-left: 4px solid #10B981; }
        .toast.success i { color: #10B981; }
        .toast.error { border-left: 4px solid #EF4444; }
        .toast.error i { color: #EF4444; }
        .toast.info { border-left: 4px solid var(--primary); }
        .toast.info i { color: var(--primary-light); }
        .toast-content { flex: 1; }
        .toast-content h4 { font-size: 12px; font-weight: 600; color: var(--text-primary); }
        .toast-content p { font-size: 11px; color: var(--text-secondary); }

        /* ===== FOOTER ===== */
        .footer {
            background: var(--bg-section);
            border-top: 1px solid var(--border-color);
            padding: 40px 0 12px;
        }
        .footer-content {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1.5fr;
            gap: 30px;
            margin-bottom: 24px;
        }
        .footer-brand .logo { margin-bottom: 8px; }
        .footer-brand p { color: var(--text-secondary); font-size: 12px; max-width: 300px; margin-bottom: 10px; }
        .social-links { display: flex; gap: 8px; }
        .social-links a {
            width: 32px; height: 32px;
            background: var(--bg-card);
            border: 1px solid var(--border-color);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--text-secondary);
            transition: var(--transition);
            font-size: 13px;
        }
        .social-links a:hover { border-color: var(--primary); color: var(--primary); transform: translateY(-2px); }

        .footer-links h4 { font-size: 13px; font-weight: 600; margin-bottom: 10px; color: var(--text-primary); }
        .footer-links ul { display: flex; flex-direction: column; gap: 6px; }
        .footer-links a { color: var(--text-secondary); font-size: 12px; transition: var(--transition); }
        .footer-links a:hover { color: var(--primary); }

        .footer-newsletter h4 { font-size: 13px; font-weight: 600; margin-bottom: 4px; color: var(--text-primary); }
        .footer-newsletter p { color: var(--text-secondary); font-size: 12px; margin-bottom: 10px; }
        .newsletter-form { display: flex; gap: 6px; }
        .newsletter-form input {
            flex: 1;
            padding: 8px 12px;
            background: var(--bg-card);
            border: 1px solid var(--border-color);
            border-radius: var(--radius-sm);
            color: var(--text-primary);
            font-family: var(--font-family);
            font-size: 12px;
        }
        .newsletter-form input:focus { outline: none; border-color: var(--primary); }
        .newsletter-form button {
            padding: 8px 12px;
            background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
            border: none;
            border-radius: var(--radius-sm);
            color: white;
            cursor: pointer;
            transition: var(--transition);
        }
        .newsletter-form button:hover { transform: scale(1.05); }

        .footer-bottom {
            padding-top: 12px;
            border-top: 1px solid var(--border-color);
            text-align: center;
        }
        .footer-bottom p { color: var(--text-muted); font-size: 11px; }

        .footer-brand .tagline {
            color: var(--text-secondary);
            font-size: 12px;
            max-width: 300px;
            margin-bottom: 8px;
            line-height: 1.6;
        }
        .footer-location {
            display: flex;
            align-items: center;
            gap: 6px;
            color: var(--primary);
            font-size: 12px;
            font-weight: 500;
            margin-bottom: 4px;
        }
        .footer-location i { font-size: 13px; }
        .footer-powered {
            display: flex;
            align-items: center;
            gap: 4px;
            font-size: 11px;
            color: var(--text-secondary);
            margin-bottom: 10px;
        }
        .footer-powered strong { color: var(--primary); font-weight: 700; }
        .footer-ethiopia {
            display: flex;
            align-items: center;
            gap: 6px;
            margin-top: 10px;
            padding-top: 10px;
            border-top: 1px solid var(--border-color);
            font-size: 11px;
            color: var(--text-secondary);
        }
        .footer-ethiopia i { color: #1E7E34; font-size: 14px; }
        .footer-address {
            font-size: 11px;
            color: var(--text-muted);
            margin-top: 2px;
        }
        .footer-bottom {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 6px;
        }

        .hero-badge i { color: #1E7E34; }

        /* ===== RESPONSIVE ===== */
        @media (max-width: 992px) {
            .hero-content, .featured-content { grid-template-columns: 1fr; }
            .hero-visual { min-height: 250px; }
            .featured-image { order: -1; }
            .footer-content { grid-template-columns: 1fr 1fr; }
            .navbar-search { max-width: 300px; margin: 0 8px; }
        }

        @media (max-width: 768px) {
            .nav-menu {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                background: var(--bg-card);
                padding: 16px 20px;
                border-bottom: 1px solid var(--border-color);
                box-shadow: var(--shadow);
            }
            .nav-menu.active { display: block; }
            .nav-links { flex-direction: column; gap: 12px; }
            .menu-toggle { display: block; }
            .hero { padding: 80px 0 30px; }
            .hero h1 { font-size: 24px; }
            .hero-stats { gap: 20px; }
            .section-header h2 { font-size: 22px; }
            .product-grid { grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); }
            .cart-sidebar { width: 100%; right: -100%; }
            .footer-content { grid-template-columns: 1fr; gap: 20px; }
            .wallet-btn span { display: none; }
            .navbar-search { max-width: 100%; margin: 0 4px; }
            .navbar-search .search-box input { font-size: 11px; padding: 5px 6px; }
            .navbar-search .search-box .search-btn { font-size: 10px; padding: 3px 8px; }
            .filter-controls { flex-direction: column; }
            .filter-group { min-width: 100%; }
            .search-filter-bar { padding: 12px; }
            .footer-bottom { flex-direction: column; text-align: center; }
        }

        @media (max-width: 480px) {
            .hero h1 { font-size: 20px; }
            .hero-actions { flex-direction: column; }
            .navbar-search .search-box input { font-size: 10px; padding: 3px 6px; }
            .navbar-search .search-box .search-btn { font-size: 9px; padding: 3px 8px; }
            .navbar .container { gap: 8px; }
            .product-grid { grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); }
            .product-image { height: 90px; }
            .product-info { padding: 6px; }
            .product-info h3 { font-size: 11px; }
            .product-info .product-desc { font-size: 9px; -webkit-line-clamp: 1; }
            .price { font-size: 12px; }
            .add-to-cart { font-size: 9px; padding: 2px 8px; }
        }

        @media (max-width: 360px) {
            .product-grid { grid-template-columns: 1fr 1fr; gap: 6px; }
            .product-image { height: 70px; }
            .product-info h3 { font-size: 10px; }
            .price { font-size: 11px; }
            .add-to-cart { font-size: 8px; padding: 2px 6px; }
        }

        /* ===== ANIMATIONS ===== */
        @keyframes float {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-12px); }
        }
        @keyframes slideUp {
            from { opacity: 0; transform: translateY(20px) scale(0.95); }
            to { opacity: 1; transform: translateY(0) scale(1); }
        }

        /* ===== FLASH SALE ===== */
        .flash-sale {
            padding: 32px 0;
            background: linear-gradient(135deg, var(--primary-dark), var(--primary));
            color: white;
            text-align: center;
            margin: 16px 0;
        }
        .flash-sale-badge {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 4px 14px;
            background: rgba(255, 255, 255, 0.15);
            border-radius: 50px;
            font-size: 12px;
            font-weight: 700;
            text-transform: uppercase;
            margin-bottom: 10px;
        }
        .flash-sale-badge i { color: #F59E0B; }
        .flash-sale h2 { font-size: 28px; font-weight: 800; }
        .flash-sale h2 .highlight {
            background: linear-gradient(135deg, #F59E0B, #F97316);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .flash-sale p { font-size: 14px; opacity: 0.8; margin: 6px 0 20px; }
        .countdown-timer {
            display: flex; justify-content: center; align-items: center; gap: 10px;
            margin-bottom: 20px;
        }
        .countdown-item {
            background: rgba(255, 255, 255, 0.1);
            padding: 6px 14px;
            border-radius: 8px;
            min-width: 54px;
        }
        .countdown-number { font-size: 24px; font-weight: 800; display: block; }
        .countdown-label { font-size: 9px; text-transform: uppercase; opacity: 0.7; }
        .countdown-separator { font-size: 20px; font-weight: 700; opacity: 0.5; }
        .flash-sale-btn {
            padding: 10px 28px;
            background: linear-gradient(135deg, #F59E0B, #F97316);
            border: none;
            border-radius: 8px;
            color: white;
            font-weight: 700;
            font-size: 14px;
            cursor: pointer;
            transition: var(--transition);
            font-family: var(--font-family);
            display: inline-flex;
            align-items: center;
            gap: 6px;
        }
        .flash-sale-btn:hover { transform: scale(1.05); box-shadow: 0 8px 30px rgba(245, 158, 11, 0.4); }

        /* ===== FEATURED ===== */
        .featured {
            padding: 50px 0;
            background: var(--bg-section);
            border-top: 1px solid var(--border-color);
            border-bottom: 1px solid var(--border-color);
        }
        .featured-content { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
        .featured-image { display: flex; justify-content: center; align-items: center; }
        .featured-placeholder {
            width: 100%; max-width: 350px; aspect-ratio: 1;
            background: linear-gradient(135deg, rgba(0, 102, 153, 0.06), rgba(51, 133, 168, 0.06));
            border-radius: var(--radius);
            display: flex; align-items: center; justify-content: center;
            font-size: 60px; color: var(--primary-light);
            border: 2px dashed var(--border-color);
        }
        .featured-text h2 { font-size: 28px; font-weight: 700; margin-bottom: 12px; color: var(--text-primary); }
        .feature-list { display: flex; flex-direction: column; gap: 12px; }
        .feature-item {
            display: flex; gap: 12px; padding: 12px;
            background: var(--bg-card);
            border-radius: var(--radius-sm);
            border: 1px solid var(--border-color);
            transition: var(--transition);
            box-shadow: var(--shadow);
        }
        .feature-item:hover { border-color: var(--primary); transform: translateX(4px); }
        .feature-item i { font-size: 18px; color: var(--primary-light); flex-shrink: 0; margin-top: 2px; }
        .feature-item h4 { font-size: 13px; font-weight: 600; margin-bottom: 2px; color: var(--text-primary); }
        .feature-item p { color: var(--text-secondary); font-size: 12px; }

        /* ===== ABOUT ===== */
        .about { padding: 50px 0; background: var(--bg-dark); }
        .about-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 20px; }
        .about-card {
            background: var(--bg-card);
            border: 1px solid var(--border-color);
            border-radius: var(--radius);
            padding: 20px;
            text-align: center;
            transition: var(--transition);
            box-shadow: var(--shadow);
        }
        .about-card:hover { transform: translateY(-4px); border-color: var(--primary); box-shadow: var(--shadow-lg); }
        .about-icon {
            width: 50px; height: 50px;
            margin: 0 auto 10px;
            background: linear-gradient(135deg, rgba(0, 102, 153, 0.08), rgba(51, 133, 168, 0.08));
            border-radius: 50%;
            display: flex; align-items: center; justify-content: center;
            font-size: 22px; color: var(--primary-light);
        }
        .about-card h3 { font-size: 15px; font-weight: 600; margin-bottom: 4px; color: var(--text-primary); }
        .about-card p { color: var(--text-secondary); font-size: 12px; line-height: 1.6; }